.container { margin: 50px; font-family: sans-serif; }

.fade-line {
  font-size: 24px;
  margin-bottom: 10px;
  opacity: 0;
  transform: translateX(-50px);
  /* We removed the animation line from here */
}

/* This class will be added by JavaScript */
.fade-line.animate {
  animation: slideIn 0.8s ease-out forwards;
}

@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Button Styling */
#start-btn {
  /* Layout & Sizing */
  padding: 12px 32px;
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px; /* Adds that "high-end" look */
  
  /* Colors & Border */
  background: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px; /* Capsule shape */
  
  /* Interaction */
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  outline: none;
}

/* Hover Effect */
#start-btn:hover {
  background: linear-gradient(135deg, #333333 0%, #444444 100%);
  transform: translateY(-2px); /* Subtle lift */
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  letter-spacing: 2.5px; /* Slight expansion */
  border-color: rgba(255, 255, 255, 0.3);
}

/* Click Effect */
#start-btn:active {
  transform: translateY(1px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Container spacing */
.controls {
  padding-left: 40px; /* Keeps it aligned with your text container */
  margin-bottom: 30px;
}

#text-container {
  padding-left: 40px; /* Adjust this number (e.g., 20px, 100px) to your liking */
  margin-top: 20px;   /* Optional: adds some space above the list */
}

/* Optional: If you want the text to be more readable, 
   you can also add space between the lines */
.fade-line {
  margin-bottom: 12px;
}

.info-header {
  padding-left: 40px; /* Matches your text-container */
  margin-top: 30px;
  margin-bottom: 10px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: #444; /* A soft dark grey */
  border-left: 4px solid #1a1a1a; /* Optional: adds a stylish vertical accent line */
  line-height: 1.5;
}